Will open a page in current Window Or in a New Window:
index href linker Open in alternate window
<form name="mycombowopt"> <select name="example" size=1> <option value="http://wsabstract.com">Website Abstraction</option> <option value="http://cnn.com">CNN</option> <option value="http://geocities.com">Geocities</option> </select> <input type="button" value="Go!" onClick="gothere()"> <br> <input type="checkbox" name="windowoption" value="ON">Open in alternate window</p> </form> <script language="javascript"> <!-- /*Combo box with "open in new window" credit -By Website Abstraction (www.wsabstract.com) Over 200+ free scripts here! */ function gothere(){ var thebox=document.mycombowopt if (thebox.windowoption.checked){ if (!window.newwindow) newwindow=window.open("") newwindow.location= thebox.example.options[thebox.example.selectedIndex].value } else location= thebox.example.options[thebox.example.selectedIndex].value } //--> </script>
1998 Copyright (C) Next Step All Rights Reserved